/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.footer-content {
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #4a6741;
}

.footer-text {
    margin-bottom: 1.2rem;
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #34495e;
    color: #ecf0f1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #4a6741;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.contact-icon {
    color: #4a6741;
    padding-top: 0.2rem;
}

.footer-search {
    margin-top: 1rem;
}

.search-form {
    display: flex;
    height: 40px;
}

.search-input {
    flex-grow: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
    background-color: #34495e;
    color: #ecf0f1;
}

.search-input::placeholder {
    color: #95a5a6;
}

.search-input:focus {
    outline: none;
    background-color: #2c3e50;
}

.search-button {
    width: 40px;
    height: 40px;
    border: none;
    background-color: #4a6741;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #3a5233;
}

.brand-logo {
    margin-bottom: 1.5rem;
}

.indlak-logo {
    max-width: 180px;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.indlak-logo:hover {
    opacity: 0.9;
}

.newsletter {
    margin-top: 1rem;
}

.newsletter-heading {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.newsletter-form {
    display: flex;
    height: 40px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
    background-color: #34495e;
    color: #ecf0f1;
}

.newsletter-input::placeholder {
    color: #95a5a6;
}

.newsletter-input:focus {
    outline: none;
    background-color: #2c3e50;
}

.newsletter-button {
    padding: 0 1rem;
    border: none;
    background-color: #4a6741;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #3a5233;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #95a5a6;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
        height: auto;
        gap: 0.5rem;
    }
    
    .newsletter-input {
        border-radius: 4px;
    }
    
    .newsletter-button {
        border-radius: 4px;
        width: 100%;
        height: 40px;
    }
}